home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / emacs_src_18_58.lha / emacs-18.58 / src / paths.h-dist < prev    next >
Text File  |  1992-05-23  |  1KB  |  36 lines

  1. /* The default search path for Lisp function "load".
  2.    This sets load-path.  */
  3. #define PATH_LOADSEARCH "/usr/local/emacs/lisp"
  4.  
  5. /* the extra search path for programs to invoke.
  6.  This is appended to whatever the PATH environment variable says
  7.  to set the Lisp variable exec-path and the first file namein it
  8.   sets the Lisp variable exec-directory.  */
  9. #define PATH_EXEC "/usr/local/emacs/etc"
  10.  
  11. /* the name of the directory that contains lock files
  12.  with which we record what files are being modified in Emacs.
  13.  This directory should be writable by everyone.
  14.  THE STRING MUST END WITH A SLASH!!!  */
  15. #define PATH_LOCK "/usr/local/emacs/lock/"
  16.  
  17. /* the name of the file !!!SuperLock!!! in the directory
  18.  specified by PATH_LOCK.  Yes, this is redundant.  */
  19. #define PATH_SUPERLOCK "/usr/local/emacs/lock/!!!SuperLock!!!"
  20.  
  21. /* The path to the file containing the termcap descriptions */
  22. #define PATH_TERMCAP "/etc/termcap"
  23.  
  24. /* The relative path (while dumping) to the directory containing 
  25.    the DOC file */
  26. #define RELPATH_DOC "../etc/"
  27.  
  28. /* The path for a /dev/null-like device */
  29. #define PATH_NULL "/dev/null"
  30.  
  31. /* Path for temporary files (for call-process-region) */
  32. #define PATH_TEMP "/tmp/emacsXXXXXX"
  33.  
  34. /* Path to the shell (the one in shell-file-name) */
  35. #define PATH_SHELL "/bin/sh"
  36.